From: Richard M. Stallman Date: Thu, 27 May 1993 04:01:13 +0000 (+0000) Subject: (x_get_local_selection): If no conversion function X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95894 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=1eb4d468b5f4dfdbfe5170aada0b686c3eae0502;p=emacs.git (x_get_local_selection): If no conversion function exists for the requested type, just return nil. --- diff --git a/src/xselect.c b/src/xselect.c index 1e811105504..d239893d3e8 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -357,13 +357,12 @@ x_get_local_selection (selection_symbol, target_type) CHECK_SYMBOL (target_type, 0); handler_fn = Fcdr (Fassq (target_type, Vselection_converter_alist)); - if (NILP (handler_fn)) - Fsignal (Qerror, - Fcons (build_string ("missing selection-conversion function"), - Fcons (target_type, Fcons (value, Qnil)))); - value = call3 (handler_fn, - selection_symbol, target_type, - XCONS (XCONS (local_value)->cdr)->car); + if (!NILP (handler_fn)) + value = call3 (handler_fn, + selection_symbol, target_type, + XCONS (XCONS (local_value)->cdr)->car); + else + value = Qnil; unbind_to (count, Qnil); }